home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December / PCWorld_2005-12_cd.bin / software / temacd / tiny / tpf-6[1].5.126.exe / Tiny Firewall 2005.msi / webui.dll / IDS / IDS-TOOLS.JS < prev    next >
Encoding:
JavaScript  |  2005-08-17  |  870 b   |  27 lines

  1. /*//////////////////////////////////////////////////////////////////////
  2. Filename:          ids-tools.js
  3. Company Name:      Computer Associates International, Inc.
  4. Legal Copyright: Copyright (c) Computer Associates International, Inc.
  5. Author:          Marek Matus (marek.matus@ca.com)
  6. Product:          Tiny Firewall
  7. Description:      useful javascript code for IDS
  8. ///////////////////////////////////////////////////////////////////////*/
  9.  
  10. function IDSIP_ShowEditDlg(strObjID, bClientParser)
  11. {
  12.     var arParams = new Array();
  13.  
  14.     arParams[0] = external;
  15.     arParams[1] = strObjID;
  16.     arParams[2] = bClientParser;
  17.  
  18.     var sFeatures="dialogHeight: 330px; dialogWidth: 600px; help:no; status:no; resizable:no; center:yes;";
  19.  
  20.     var arRetVal = window.showModalDialog( 'ids-ipaddr-edit.html', arParams, sFeatures );
  21.  
  22.     if ( arRetVal && arRetVal[0] )
  23.         return arRetVal[0];
  24.     else
  25.         '';
  26. }
  27.